Don't let it intimidate you. It's really rather simple, than complex. I use it every day between scp (secure copy) and just logging into my server from a terminal with SSH.
Basically, if a system is running OpenSSH-Server (the listening server, for connections), you can SSH into that system from another system at a remote location. (Of course, you must have a username/password on this remote system, to login.)
Secure, means that all of your commands, data, passwords, and entire connection is encrypted in a tunnel to the SSH server which then decrypts it and reads it as raw data. Basically, to SSH to another computer, you would run:
Code:
ssh remoteuser@remotehost
You would then be prompted to enter "remoteuser"'s password, and then you will be given a prompt at that system. From there, you can execute commands just like you were sitting at that system with a terminal open. You can also forward X applications (graphical applications) through your SSH tu
1f40
nnel and have them workable on your monitor. (Notice, it is slow across the internet.)
Dr Small